wcscpy_s |
The function wcscpy_s is used two copy two strings of the type wchar_t. On the other hand, a variable of the type wstring can be copied automatically using the equal sign. The following two programs are equivalent. As it can be seen from the examples, wstring allows writing code that is easier to read than wchar_t La función wcscpy_s es usada para copiar dos cadenas de texto del tipo wchar_t. Por otro lado, una variable del tipo wstring puede ser copiada automáticamente usando el signo de igual. Los dos siguientes códigos son equivalentes. Como se puede ver de los ejemplos, wstring permite escribir código que es más fácil de leer que wchar_t. |
Program.cpp |
void Program::Window_Open(Win::Event& e) { //_________________________ Using wchar_t wchar_t name[] = L"Mike"; wchar_t winner[64]; wcscpy_s(winner, 64, name); } |
Program.cpp |
void Program::Window_Open(Win::Event& e) { //_________________________ Using wstring wstring name(L"Mike"); wstring winner; winner = name; } |